d38c1385057a629c28304668cc9683663ae80b73,extensions/rvdatabinding/src/main/java/com/google/android/agera/rvdatabinding/DataBindingRepositoryPresenterCompiler.java,DataBindingRepositoryPresenterCompiler,forResultList,#,95

Before Change


  @Override
  public RepositoryPresenter<Result<List<Object>>> forResultList() {
    return repositoryPresenterOf(null)
        .layoutForItem(layoutFactory)
        .bindWith(new ViewBinder(itemId, new ArrayList<>(handlers)))
        .forResultList();
  }

After Change


  @Override
  public RepositoryPresenter<Result<List<Object>>> forResultList() {
    return repositoryPresenterOf(null)
        .layoutForItem(layoutFactory)
        .stableIdForItem(stableIdForItem)
        .bindWith(new ViewBinder(itemId, new ArrayList<>(handlers)))
        .forResultList();
  }